home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat2 / isoview.2 < prev    next >
Text File  |  1999-09-16  |  893b  |  67 lines

  1.  
  2.  
  3.  
  4. isoview(2)                     Scilab Function                     isoview(2)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   isoview - set scales for isometric plot
  13.  
  14. CALLING SEQUENCE
  15.   isoview(xmin,xmax,ymin,ymax)
  16.  
  17. PARAMETERS
  18.  
  19.   xmin,xmax,ymin,ymax
  20.                  : four real values
  21.  
  22. DESCRIPTION
  23.   isoview(xmin,xmax,ymin,ymax) is used to set the graphic scales in order to
  24.   have isometric scales on the X and Y axes. The requested values xmin, xmax,
  25.   ymin, ymax must be contained in the computed frame of the graphic window.
  26.   This function sets the current graphic scales and can be used in conjunc-
  27.   tion with graphic routines which request the current graphic scale (
  28.   strf="x0y" in plot2d ). This function does not modify the size of the
  29.   graphic window.
  30.  
  31. EXAMPLE
  32.   xbasc();
  33.   t=(0:0.1:2*%pi)';
  34.   isoview(-1,1,-1,1);
  35.   plot2d(sin(t),cos(t),-1,'001')
  36.  
  37. SEE ALSO
  38.   square
  39.  
  40. AUTHOR
  41.   Steer S.
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.